home *** CD-ROM | disk | FTP | other *** search
- ! 2d_Array_Scaled two dimensional array with count and scaling at top
- !
- !-------------------------------- Prototype of data file --------------------
- ! rows low_limit high_limit
- ! columns low_limit high_limit
- ! data data data data data
- ! data data data data data
- !-------------------------------- Example of data file -----------------------
- ! 2 .4 .8 ! 2 elements, scaled from .4 to .8
- ! 3 3.1 3.2 ! 3 elements, scaled from 3.1 to 3.2
- ! 4.3 3.4 5.6 ! actual data
- ! 1.2 6.7 4.2
- !--------------------------------
-
- Define Rows Integer
- Define Columns Integer
- Define FirstLow Real
- Define FirstHigh Real
- Define SecondLow Real
- Define SecondHigh Real
-
- Read Rows FirstLow FirstHigh
- Read Columns SecondLow SecondHigh
-
- BeginStructure
- DefArray Rows FirstLow FirstHigh
- DefArray Columns SecondLow SecondHigh
- DefDataType IEEE8
- EndArray
- EndArray
- EndStructure
-
- RecurseRead
-